body {
 	background-color: #EDE6C9;
 	margin: 0 auto;
 	font-family: "Archivo", sans-serif;
 	font-weight: 400;
}

.main-head, .sub-head, .title-col {
 	font-family: "Caveat", cursive;
 	font-weight: 700;
}

/* Navigation */ /*  Navigation */ /* Navigation */ /* Navigation */ /* Navigation */ /* Navigation */ /* Navigation */ /* Navigation */ /* Navigation */ 

.header {
 	background-color: #F4C70C;
 	height: 118px;
 	display: flex;
 	align-items: center;
 	justify-content: space-between;
 	padding: 0 2%;
 	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
 	display: flex;
 	align-items: center;
 	justify-content: space-between;
 	width: 100%;
}

.logo img {
 	height: 95px;
}

.logo a:hover {
 	height: 100px;
}

.navbar {
 	display: flex;
 	align-items: center;
 	gap: 112px;
}

.navbar a, .dropbtn {
 	text-align: center;
 	font-size: 18px;
 	font-weight: 600;
 	text-decoration: none;
 	color: #0C1D3B;
 	transition: all 0.3s ease;
}

.navbar a:hover, .dropbtn:hover {
 	color: #013565;
 	font-size: 18.3px;
 	text-decoration: underline;
 	text-decoration-thickness: 2px;
 	text-underline-offset: 8px;
 	text-decoration-color: #013565;
}

.navbar .book-btn {
 	width: 144px;
 	height: 56px;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	margin-left: -16px;
 	background-color: #0C1D3B;
 	color: #F4C70C !important;
 	border: 2px solid #0C1D3B;
 	border-radius: 8px;
 	font-size: 18px;
 	font-weight: 600;
 	text-decoration: none !important;
 	transition: all 0.3s ease;
}

.navbar .book-btn:hover {
 	background-color: transparent;
 	color: #0C1D3B !important;
 	border-color: #0C1D3B;
 	text-decoration: none !important;
}

/* Hero Section */ /* Hero Section */ /* Hero Section */ /* Hero Section */ /* Hero Section */ /* Hero Section */ /* Hero Section */ /* Hero Section */ 

.hero {
 	position: relative;
 	width: 100%;
 	min-height: 100vh;
 	height: auto;
 	overflow: hidden;
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
}

.hero-img {
 	position: absolute;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	z-index: 1;
}

.hero-content {
 	position: relative;
 	z-index: 2;
 	max-width: 840px;
 	margin-left: auto;
 	padding-right: 5%;
 	text-align: right;
 	color: #F4C70C;
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	height: 100%;
 	padding-top: 8vh;
 	padding-bottom: 8vh;
 	box-sizing: border-box;
}

.hero-content h1 {
 	font-size: clamp(56px, 8vw, 104px);
 	font-family: "Caveat", cursive;
 	letter-spacing: 1px;
 	line-height: 1.1;
 	color: #F4C70C;
 	margin: 0 0 5.1vh 0;
}

.hero-content h2 {
 	font-size: clamp(14px, 2vw, 18px);
 	font-family: "Archivo", sans-serif;
 	font-weight: 400;
 	color: #EDE6C9;
 	line-height: 1.4;
 	margin: 0 0 32.8vh 0;
}

.btn-main {
 	display: inline-block;
 	width: 224px;
 	height: 72px;
 	line-height: 72px;
 	background-color: #F4C70C;
 	color: #0C1D3B;
 	border: 2px solid #F4C70C;
 	border-radius: 999px;
 	font-size: 24px;
 	font-weight: 600;
 	font-family: "Archivo", sans-serif;
 	text-align: center;
 	text-decoration: none;
 	transition: all 0.3s ease;
 	margin-right: 0;
 	align-self: flex-end;              
}

.btn-main:hover {
 	background-color: transparent;
 	color: #F4C70C;
 	border-color: #F4C70C;
}

/* About Section */ /* About Section */ /* About Section */ /* About Section */ /* About Section */ /* About Section */ /* About Section */ /* About Section */

.about {
 	width: 100%;
 	background-color: #0C1D3B;
 	padding: 24px;
 	box-sizing: border-box;
}

.main {
 	display: flex;
 	justify-content: space-between;
 	align-items: stretch;
 	gap: 24px;
 	padding: 32px;
 	background-color: #0C1D3B;
 	width: 100%;
 	box-sizing: border-box;
}

.col {
 	flex: 1;
 	min-width: 0;
}

.card {
 	position: relative;
 	width: 100%;
 	aspect-ratio: 9 / 16;
 	max-height: 88vh;
 	overflow: hidden;
 	border-radius: 16px;
 	cursor: pointer;
}

.card img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	object-position: top;
 	transition: transform 0.5s ease;
 	border-radius: 16px;
 	display: block;
}

.card:hover img {
 	transform: scale(1.1);
}

.overlay {
 	position: absolute;
 	inset: 0;
 	padding: 24px;
 	background: linear-gradient(to top, #000813, transparent 50%);
 	opacity: 0;
 	transition: opacity 0.5s ease;
 	display: flex;
 	flex-direction: column;
 	justify-content: flex-end;
 	align-items: center;
 	text-align: center;
 	border-radius: 16px;
 	color: #fff;
}

.card:hover .overlay {
 	opacity: 1;
}

.title-col {
 	font-family: "Caveat", cursive;
 	font-weight: 700;
 	font-size: clamp(48px, 6vw, 80px);
 	line-height: 0.95;
 	color: #F4C70C;
 	margin: 0 0 12px 0;
 	text-shadow: 1px 0px 6px rgba(12, 29, 59, 0.1);
}

.overlay p {
 	font-family: "Archivo", sans-serif;
 	font-weight: 400;
 	font-size: clamp(14px, 1.8vw, 16px);
 	line-height: 1.4;
 	max-height: 5.6em; 
 	overflow: hidden;
 	text-shadow: 1px 0px 6px rgba(12, 29, 59, 0.1);
 	margin: 8px 0 8px 0;
 	color: #EDE6C9;
}

/* Carousel Section */ /* Carousel Section */ /* Carousel Section */ /* Carousel Section */ /* Carousel Section */ /* Carousel Section */ /* Carousel Section */

.carousel {
 	position: relative;
 	width: 100%;
 	height: 100vh;
 	overflow: hidden;
 	font-family: "Archivo", sans-serif;
}

.carousel-container {
 	display: flex;
 	width: 100%;
 	height: 100%;
 	transition: transform 0.5s ease;
}

.carousel-slide {
 	position: relative;
 	min-width: 100%;
 	height: 100%;
}

.carousel-slide img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	position: absolute;
 	top: 0;
 	left: 0;
}

.base-img {
 	z-index: 1;
}

.hover-img {
 	z-index: 2;
 	opacity: 0;
 	transition: opacity 0.5s ease;
}

.hover-content {
 	position: absolute;
 	bottom: 10%;
 	right: 5vw;
 	width: 50vw;
 	max-width: 840px;
 	text-align: right;
 	z-index: 3;
 	opacity: 0;
 	transition: opacity 0.5s ease;
}

.hover-content h3 {
 	font-family: "Caveat", cursive;
 	font-weight: 700;
 	font-size: min(8vw, 104px);
 	line-height: 1;
 	color: #F4C70C;
 	margin-bottom: 2vh;
 	text-shadow: 1px 0px 6px rgba(12, 29, 59, 0.1);
 	white-space: nowrap;
}

.hover-content .learn-more {
 	display: inline-block;
 	width: 224px;
 	height: 72px;
 	line-height: 72px;
 	text-align: center;
 	background-color: #F4C70C;
 	color: #0C1D3B;
 	font-family: "Archivo", sans-serif;
 	font-weight: 600;
 	font-size: 24px;
 	border: 2px solid #F4C70C;
 	border-radius: 36px;
 	text-decoration: none;
 	transition: all 0.3s ease;
}

.hover-content .learn-more:hover {
 	background-color: transparent;
 	color: #F4C70C;
}

.carousel-slide .arrow {
 	position: absolute;
 	top: 50%;
 	width: 48px;
 	height: 48px;
 	line-height: 48px;
 	font-size: 48px;
 	text-align: center;
 	color: #F4C70C;
 	transform: translateY(-50%);
 	cursor: pointer;
 	transition: transform 0.2s ease;
 	z-index: 5;
}

.carousel-slide .arrow:hover {
 	transform: translateY(-50%) scale(1.05);
}

.carousel-slide .arrow-left {
 	left: 16px;
}

.carousel-slide .arrow-left::before {
 	content: '❮';
}

.carousel-slide .arrow-right {
 	right: 16px;
}

.carousel-slide .arrow-right::before {
 	content: '❯';
}

.carousel-dots {
 	position: absolute;
 	bottom: 40px;
 	left: 8px;
 	right: 8px;
 	display: flex;
 	justify-content: center;
 	gap: 8px;
 	z-index: 4;
}
.carousel-dots .dot {
 	flex: 1;
 	min-width: 40px;
 	height: 6px;
 	margin: 0 4px;
 	background-color: #0C1D3B;
 	opacity: 0.6;
 	border-radius: 8px;
 	cursor: pointer;
 	transition: all 0.3s ease;
}

#slide1:checked ~ .carousel-dots label[for="slide1"],
#slide2:checked ~ .carousel-dots label[for="slide2"],
#slide3:checked ~ .carousel-dots label[for="slide3"],
#slide4:checked ~ .carousel-dots label[for="slide4"],
#slide5:checked ~ .carousel-dots label[for="slide5"],
#slide6:checked ~ .carousel-dots label[for="slide6"],
.carousel-dots .dot:hover {
 	background-color: #F4C70C;
 	opacity: 1;
}

#slide1:checked ~ .carousel-container {
 	transform: translateX(0%);
}
#slide2:checked ~ .carousel-container {
 	transform: translateX(-100%);
}
#slide3:checked ~ .carousel-container {
 	transform: translateX(-200%);
}
#slide4:checked ~ .carousel-container {
 	transform: translateX(-300%);
}
#slide5:checked ~ .carousel-container {
 	transform: translateX(-400%);
}
#slide6:checked ~ .carousel-container {
 	transform: translateX(-500%);
}

.carousel input[type="radio"] {
 	display: none;
}

.carousel-slide:hover .hover-img,
.carousel-slide:hover .hover-content {
 	opacity: 1;
}

/* Review Section */ /* Review Section */ /* Review Section */ /* Review Section */ /* Review Section */ /* Review Section */ /* Review Section */ /* Review Section */

.reviews {
 	background-color: #EDE6C9;
 	padding: 24px 24px 12px 24px;
 	font-family: "Archivo", sans-serif;
 	color: #0C1D3B;
 	box-sizing: border-box;
 	width: 100%;
}

.reviews-header {
 	font-family: "Caveat", cursive;
 	font-weight: 700;
 	font-size: clamp(56px, 8vw, 104px);
 	letter-spacing: 1px;
 	color: #0C1D3B;
 	text-align: left;
 	margin: 0px 24px;
 	max-width: 1920px;
}

.reviews-content {
 	display: grid;
 	grid-template-columns: 2fr 1fr;
 	gap: 40px;
 	max-width: 1920px;
 	margin: 0 auto;
 	padding: 24px;
 	align-items: stretch;
}

.reviews-left {
 	display: flex;
 	flex-direction: column;
 	gap: 24px;
}

.testimonial {
 	display: flex;
 	align-items: flex-start;
 	background-color: #F7F6EF;
 	padding: 24px;
 	border-radius: 16px;
 	box-shadow: 0 0px 8px rgba(12, 29, 59, 0.1);
 	font-weight: 400;
}

.avatar1 {
 	width: 64px;
 	height: 64px;
 	margin-right: 16px;
 	flex-shrink: 0;
}
.avatar2 {
 	width: 52px;
 	height: 52px;
 	margin-right: 8px;
 	flex-shrink: 0;
}

.testimonial-text p {
 	color: #0C1D3B;
 	margin: 0 0 8px 0;
 	font-size: 16px;
 	line-height: 1.4;
 	font-weight: 400;
}

.attribution {
 	font-size: 16px;
 	color: #0C1D3B;
 	font-weight: 400;
}

.reviews-right-wrap {
 	display: flex;
 	flex-direction: column;
 	justify-content: flex-start;
 	gap: 24px;
}

.reviews-right {
 	display: flex;
 	flex-direction: column;
 	gap: 24px;
 	background-color: #f7f6ef;
 	padding: 24px;
 	border-radius: 16px;
 	box-shadow: 0 0px 8px rgba(12, 29, 59, 0.1);
 	font-weight: 400;
}

.rating-box {
 	display: flex;
 	gap: 16px;
 	align-items: flex-start;
}

.review-info p {
 	margin: 4px;
}

.rating-row {
 	display: flex;
 	align-items: center;
 	gap: 8px;
}

.rating-row img {
 	height: 20px;
 	width: auto;
 	object-fit: contain;
 	margin-left: 4px;
}

.rating-row span {
 	font-size: 16px;
 	color: #0C1D3B;
}

.cta-wrapper {
 	display: flex;
 	justify-content: flex-end;
}

.cta-button {
 	flex: 1;
 	background-color: #0C1D3B;
 	color: #EDE6C9;
 	font-weight: 700;
 	font-size: 32px;
 	margin-top: 24px;
 	padding: 62px 32px;
 	border-radius: 16px;
 	cursor: pointer;
 	border: 2px solid transparent;
 	box-shadow: 0 0px 8px rgba(12, 29, 59, 0.1);
 	position: relative;
 	transition: all 0.3s ease;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	text-align: center;
 	width: 100%;
 	height: 81%;
}

.cta-button::after {
 	content: attr(data-text);
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	transform: translate(-50%, -50%);
 	opacity: 0;
 	color: #0C1D3B;
 	font-weight: 700;
 	white-space: nowrap;
 	transition: opacity 0.3s ease;
}

.cta-button:hover {
 	background-color: transparent;
 	border: 2px solid #0C1D3B;
 	color: transparent;
}

.cta-button:hover::after {
 	opacity: 1;
}

.cta-link {
 	display: inline-block;
 	text-decoration: none;
 	width: 100%;
}

.cta-link:visited,
.cta-link:active,
.cta-link:hover {
 	text-decoration: none;
}

/* Footer Section */ /* Footer Section */ /* Footer Section */ /* Footer Section */ /* Footer Section */ /* Footer Section */ /* Footer Section */ /* Footer Section */

.footer {
 	background-color: #0C1D3B;
 	font-family: "Archivo", sans-serif;
 	color: #EDE6C9;
 	font-weight: 400;
 	width: 100%;
}

.footer-top {
 	display: grid;
 	grid-template-columns: minmax(320px, 320px) auto;
 	grid-template-rows: 1fr auto;
 	grid-template-areas:
 	"map info"
 	"map cta";
 	gap: 32px;
 	padding: 48px;
 	box-sizing: border-box;
 	position: relative;
}

.footer-map {
 	grid-area: map;
}

.map-embed {
 	width: 320px;
 	height: 250px;
 	min-height: 240px;
 	border: 0;
 	border-radius: 12px;
 	display: block;
}

.footer-info {
 	grid-area: info;
 	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
 	width: 100%;
 	justify-self: start;
 	align-self: start;
 	padding: 0;
 	margin: 0;
}

.info-links,
.info-details {
 	display: flex;
 	justify-content: space-between;
 	align-items: center;
 	width: 100%;
 	padding: 0 24px;
 	box-sizing: border-box;
}

.info-links .footer-row {
 	display: flex;
 	align-items: center;
 	gap: 24px;
}

.info-links .footer-row img {
 	width: 40px;
 	height: auto;
}

.footer-row span {
 	color: #EDE6C9;
 	font-weight: 400;
}

.footer-link {
 	color: #EDE6C9;
 	text-decoration: none;
 	transition: color 0.3s ease;
}
.footer-link:hover {
 	color: #F4C70C;
}

.info-details {
 	display: flex;
 	flex-direction: column;
 	justify-content: space-between;
 	align-items: flex-start;
 	width: 100%;
 	height: calc(100% - auto);
 	flex: 1;
 	gap: 32px;
 	margin-top: 32px;
}

.info-details .footer-row {
 	display: flex;
 	align-items: center;
 	gap: 24px;
}

.info-details .footer-row img {
  width: 40px;
  height: auto;
}

.footer-cta-wrap {
 	grid-area: unset;
 	justify-self: unset;
 	align-self: unset;
 	margin: 0;
 	position: absolute;
 	bottom: 72px;
 	right: 48px;   
}

.cta-footer-button {
 	display: inline-block;
 	width: 224px;
 	height: 72px;
 	line-height: 72px;
 	text-align: center;
 	border-radius: 999px;
 	background-color: #F4C70C;
 	color: #0C1D3B;
 	border: 2px solid #F4C70C;
 	font-family: "Archivo", sans-serif;
 	font-size: 24px;
 	font-weight: 600;
 	text-decoration: none;
 	transition: all 0.3s ease;
 	cursor: pointer;
}

.cta-footer-button::after {
 	content: attr(data-text);
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	transform: translate(-50%, -50%);
 	opacity: 0;
 	color: #F4C70C;
 	font-weight: 700;
 	white-space: nowrap;
 	transition: opacity 0.3s ease;
}

.cta-footer-button:hover {
 	background-color: transparent;
 	border: 2px solid #F4C70C;
 	color: transparent;
}

.cta-footer-button:hover::after {
 	opacity: 1;
}

.footer-illustration {
 	width: 100%;
 	margin-top: -72px;
 	object-fit: cover;
 	display: block;
}

/* Act. Intro Section */ /* Act. Intro Section */ /* Act. Intro Section */ /* Act. Intro Section */ /* Act. Intro Section */ /* Act. Intro Section */ 

.activities {
 	background-color: #EDE6C9;
 	color: #0C1D3B;
 	font-family: "Archivo", sans-serif;
 	padding: 48px 48px;
 	box-sizing: border-box;
 	width: 100%;
 	border-bottom: 0.5px solid #0C1D3B;
}

.activities-wrapper {
 	display: flex;
 	max-width: 1920px;
 	margin: 0 auto;
 	align-items: flex-start;
}

.activities-left {
 	flex: 3;
 	height: 100%;
}

.activities-left > *:last-child {
 	margin-bottom: -48px;
 	padding-bottom: 0;
}

.activities-right {
 	flex: 1;
 	display: flex;
 	justify-content: center;
 	align-items: flex-start;
 	padding-left: 48px;
}

.activities-title {
 	font-family: "Caveat", cursive;
 	text-align: left;
 	font-size: 150px;
 	font-weight: 700;
 	color: #0C1D3B;
 	margin: -48px auto -24px -8px;
}

.activities-intro {
 	font-size: 16px;
 	font-weight: 420;
 	color: #0C1D3B;
 	line-height: 1.4;
 	margin-bottom: 24px;
}

.activities-list {
 	display: flex;
 	gap: 24px;
}

.activities-column {
 	list-style: none;
 	padding: 0;
  	 margin: 0;
 	flex: 1;
}

.activities-column li {
 	margin-bottom: 21px;
 	position: relative;
 	padding-left: 24px;
}

.activities-column li::before {
 	content: '';
 	position: absolute;
 	left: 0;
 	top: 5px;
 	width: 10px;
 	height: 10px;
 	background-color: #0C1D3B;
 	border-radius: 50%;
}

.activity-name {
 	font-weight: 700;
 	color: #0C1D3B;
 	display: block;
 	margin-bottom: 0px;
}

.activities-column li p {
 	margin: 0;
 	font-size: 16px;
 	font-weight: 400;
 	 	color: #0C1D3B;
 	line-height: 1.4;
}

.activities-column li strong {
 	font-weight: 700;
 	color: #0C1D3B;
}

.activities-right {
 	flex: 1;
 	display: flex;
 	flex-direction: column;
 	justify-content: flex-start;
 	padding-left: 48px;
}
.activities-image-frame {
 	flex: 1;
 	border-radius: 8px;
 	box-shadow: 0 0px 8px rgba(12, 29, 59, 0.1);
 	overflow: hidden;
}

.activities-image {
 	display: block;
 	width: auto;
 	height: 100%;
 	object-fit: cover;
}

/* Act. Details Section */ /* Act. Details Section */ /* Act. Details Section */ /* Act. Details Section */ /* Act. Details Section */ /* Act. Details Section */ 

.activities-details {
 	width: 100%;
 	font-family: "Archivo", sans-serif;
 	background-color: #EDE6C9;
}

.activity-module {
 	display: flex;
 	align-items: center;
 	padding: 48px;
 	gap: 32px;
 	box-sizing: border-box;
	background-color: #EDE6C9;
	transition: background-color 0.3s ease;
 	border-top: 0.5px solid #0C1D3B;
 	border-bottom: 0.5px solid #0C1D3B;
}

.activity-module:hover {
	background-color: #0C1D3B;
}

.activity-module:hover .activity-title {
	color: #F4C70C;
}

.activity-module:hover .activity-description {
	color: #EDE6C9;
}
.activity-module:hover .activity-button {
	background-color: #F4C70C;
	color: #0C1D3B;
	border-color: #F4C70C;
}

.activity-module:hover .activity-button:hover,
.activity-image{
	background-color: transparent;
	color: #F4C70C;
	border-color: #F4C70C;
	box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
}

.activity-image {
 	flex: 1;
 	max-width: 25%;
	overflow: hidden;
	margin-right: 24px;
	border-radius: 8px;
	box-shadow: 0 0px 8px rgba(12, 29, 59, 0.1);
}

.activity-image img {
 	width: 100%;
 	border-radius: 8px;
 	display: block;
	transition: transform 0.4s ease;
}

.activity-module:hover .activity-image img {
	transform: scale(1.1);
	box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
}

.activity-content {
 	flex: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 960px;
}

.activity-title {
 	font-family: "Caveat", cursive;
 	font-size: 100px;
 	font-weight: 700;
 	color: #0C1D3B;
 	margin: -24px 0px -16px -12px;
}

.activity-description {
 	font-size: 16px;
 	font-weight: 400;
 	color: #0C1D3B;
	letter-spacing: 0.2px;
 	line-height: 1.4;
 	margin-bottom: 24px;
}

.activity-button {
 	display: inline-block;
 	width: 224px;
 	height: 72px;
 	line-height: 72px;
 	text-align: center;
 	background-color: #0C1D3B;
 	color: #EDE6C9;
 	font-family: "Archivo", sans-serif;
 	font-weight: 600;
 	font-size: 24px;
 	border: 2px solid #0C1D3B;
 	border-radius: 36px;
 	text-decoration: none;
 	transition: all 0.3s ease;
	margin-top: 80px;
 	box-shadow: 0 0px 8px rgba(12, 29, 59, 0.1);
}

.activity-button:hover {
 	background-color: transparent;
 	color: #0C1D3B;
}

/* Contacts Section */ /* Contacts Section */ /* Contacts Section */ /* Contacts Section */ /* Contacts Section */ /* Contacts Section */ /* Contacts Section */ 

.contact-main {
	padding: 0px 48px;
	background-color: #EDE6C9;
	flex-direction: row; 
	justify-content: space-between;
	align-items: flex-start;
	gap: 48px;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.contact-container {
	max-width: 1920px;
	margin: 0 auto;
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
}

.contact-left {
	flex: 1 1 50%;
	min-width: 300px;
}


.contact-right {
	flex: 1 1 50%;
	min-width: 300px;
}

.contact-info {
	flex: 1;
}

.contact-title {
	font-family: 'Caveat', cursive;
	font-size: 150px;
	font-weight: 700;
 	margin: 8px 0px -24px -12px;
	color: #0C1D3B;
}

.contact-intro {
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
	margin-bottom: 24px;
	max-width: 700px;
	color: #0C1D3B;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 16px;
	color: #0C1D3B;
}

.detail-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 32px;
	max-width: 800px;
}

.detail-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #0C1D3B;
	font-size: 16px;
	font-weight: 400;
}

.contact-icon {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.contact-link {
	color: #0C1D3B;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-link:hover {
	color: #013565; 
}

.disclaimer {
	font-size: 16px;
	font-style: italic;
	color: #0C1D3B;
	margin-top: 24px;
	max-width: 600px;
	font-weight: 400;
}

.contact-form {
	flex: 1;
	padding: 48px 0px 0px 0px;
	border-radius: 16px;
	box-sizing: border-box;
}

.contact-form form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-right: 24px;
}

.contact-form input,
.contact-form textarea {
	padding: 12px 16px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-family: "Archivo", sans-serif;
	font-size: 16px;
	line-height: 1.4;
	width: 100%;
	resize: vertical;

}
.contact-form input {
	min-height: 32px;
}
.contact-form textarea {
	min-height: 232px;
}

.submit-btn-wrap {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	position: relative;
	z-index: 2;
}

.submit-btn {
   	width: 150px;
 	height: 56px;
	text-align: center;
	background-color: #0C1D3B;
	border: 2px solid #0C1D3B;
	color: #EDE6C9;
	font-size: 18px;
	border-radius: 999px;
	text-decoation: noner;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	cursor: pointer;
	align-self: flex-end;
	margin-right: -38px;
	position: relative;
}

.submit-btn:hover {
	background-color: transparent;
	color: #0C1D3B;
	border: 2px solid #0C1D3B;
}

.contact-bottom-illustration {
	width: 100%;
	margin: -80px 0 0;
	padding: 0;
	position: relative;
	z-index: 1;
	pointer-events: none;
}

.contact-bottom-illustration img {
	width: 100%;
	height: auto;
	display: block;
}

@media (min-width: 769px) {
	.contact-container {
	flex-wrap: nowrap;
  }
}

@media (max-width: 768px) {
	.contact-container {
	flex-direction: column;
  }

  .contact-form, .contact-info {
	flex: 1 1 100%;
  }

  .contact-title {
	font-size: 36px;
  }
}

/* FAQs Section */ /* FAQs Section */ /* FAQs Section */ /* FAQs Section */ /* FAQs Section */ /* FAQs Section */ /* FAQs Section */ /* FAQs Section */

.faqs {
	padding: 48px;
	background-color: #EDE6C9;
	font-family: "Archivo", sans-serif;
	color: #0C1D3B;
	max-width: 1400px;
	margin: 0 auto;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 24px;
	margin-top: 12px;
	max-width: 1400px;
}

.faq-group {
	background-color: #F7F6EF;
	border-radius: 16px;
	padding: 8px 16px;
	box-shadow: 0 0px 8px rgba(12, 29, 59, 0.1);
	transition: background-color 0.5s ease, color 0.5s ease;
}

.faq-group:hover {
	background-color: #0C1D3B;
	color: #EDE6C9;
}

.faq-group:hover .faq-summary-inner,
.faq-group:hover .faq-content,
.faq-group:hover p,
.faq-group:hover a {
  color: #EDE6C9;
}

.faq-group:hover a:hover {
  color: #FFD700;
}

.faq-title {
	font-family: 'Caveat', cursive;
	font-size: 150px;
	font-weight: 700;
	margin: -48px auto 16px -8px;
	text-align: left;
	transition: font-size 0.5s ease, color 0.5s ease;
}

.faq-category {
	font-size: 50px;
	margin: 8px 8px 16px;
	font-family: "Caveat", cursive;
	font-weight: 900;
	color: #0C1D3B;
	transition: font-size 0.5s ease, color 0.5s ease;
}

.faq-group:hover .faq-category {
	font-size: 52px;
	color: #FFD700;
}

.faq-category:hover {
	font-size: 54px;
	margin: 8px 8px 16px;
	font-family: "Caveat", cursive;
	font-weight: 900;
	color: #F4C70C;
}

.faq-category:hover {
	color: #F4C70C !important;
}

.faq-content {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.5s ease, opacity 0.5s ease;
	padding: 0px 24px;
}

.faq-item {
	border-top: 1px solid #CCC;
	padding: 12px 0;
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	padding-right: 24px;
	position: relative;
	background-color: transparent;
	border-radius: 8px;
	transition: 0.5s ease;
}

.faq-summary-inner {
	background-color: transparent;
	padding: 16px 16px;
	border-radius: 8px;
	transition: background-color 0.5s ease, color 0.5s ease, font-size 0.5s ease;
	font-size: 15.5px;
	font-weight: 600;
}

.faq-item:hover .faq-summary-inner {
	font-size: 16px;
}

.faq-item summary:hover .faq-summary-inner {
	font-size: 16.5px;
	color: #F4C70C;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "▶";
	display: inline-block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	transition: transform 0.5s ease, color 0.5s ease;
}

.faq-item.open summary::after {
	transform: translateY(-50%) rotate(90deg);
}

.faq-item summary:hover::after {
  color: #F4C70C;
}

.faq-item.open .faq-content {
	max-height: 900px;
	opacity: 1;
	padding-top: 0px;
}


.faq-item p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

.faq-item a {
	color: #0C1D3B;
	transition: color 0.5s ease;
}

.faq-item a:hover {
	color: #0C81ED;
	text-decoration: underline;
	transition: color 0.5s ease;
}

@media (max-width: 900px) {
	.faq-grid {
	grid-template-columns: 1fr;
  }
}

/* Safety Section */ /* Safety Section */ /* Safety Section */ /* Safety Section */ /* Safety Section */ /* Safety Section */ /* Safety Section */ /* Safety Section */ 

.farm-safety {
	background-color: #EDE6C9;
	color: #0C1D3B;
	font-family: "Archivo", sans-serif;
	font-weight: 400;
	padding: 24px 24px;
 	box-sizing: border-box;
}

.section-wrapper {
	max-width: 1400px;
	margin: 0 auto;
}

.safety-heading {
	font-size: 150px;
	margin-bottom: 16px;
	font-weight: 700;
 	margin: -16px 0px -0px -12px;
	font-family: "Caveat", cursive;
}

.safety-intro {
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 0.2px;
	margin-bottom: 32px;
	color: #0C1D3B;
}

.safety-block {
	background: #F7F6EF;
	padding: 32px;
	margin-bottom: 32px;
	border-radius: 12px;
	box-shadow: 0 0px 8px rgba(12, 29, 59, 0.1);
	transition: background-color 0.5s ease, color 0.5s ease
}

.safety-block:hover {
	background-color: #0C1D3B;
}

.safety-block h2 {
	font-size: 50px;
	margin: -8px 0px 16px;
	font-family: "Caveat", cursive;
	font-weight: 900;
	color: #0C1D3B;
	transition: font-size 0.5s ease, color 0.5s ease
}

.safety-block:hover h2 {
	font-size: 52px;
	color: #F4C70C;
}

.safety-block h3 {
	font-size: 19.5px;
	font-weight: 600;
	margin-top: 24px;
	margin-bottom: 0px;
	color: #0C1D3B;
	transition: font-size 0.5s ease, color 0.5s ease
}

.safety-block:hover h3 {
	font-size: 20px;
	color: #F4C70C;
}

.safety-block p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 8px;
	line-height: 1.4;
	color: #0C1D3B;
}

.safety-block ul {
	padding-left: 20px;
	margin: 0;
	list-style-type: disc;
}

.safety-block li {
	margin-bottom: 8px;
	font-size: 16px;
	transition: font-size 0.5s ease, color 0.5s ease;
}

.safety-block:hover p,
.safety-block:hover li {
	font-size: 16px;
	color: #EDE6C9;
}

.safety-block p,
.safety-block li,
.safety-block h2,
.safety-block h3 {
	transition: font-size 0.5s ease, color 0.5s ease, line-height 0.5s ease;
}

.safety-block a {
	color: #0C1D3B;
	text-decoration: underline;
	transition: color 0.5s ease;
}

.safety-block:hover a {
	color: #EDE6C9;
}

.safety-block a:hover {
	color: #FFD700;
}

@media (max-width: 768px) {
	body {
	padding: 0 16px;
}

.header {
    flex-direction: column;
    height: auto;
    padding: 16px;
    gap: 16px;
}

.navbar {
	flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.navbar a,
.dropbtn,
.navbar .book-btn {
    font-size: 16px;
    padding: 8px 12px;
}

  .navbar .book-btn {
    width: auto;
}

.hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 8vh 0;
}

.hero-content h1 {
    font-size: 50px !important;
    margin-bottom: 2vh;
}

.hero-content h2 {
    font-size: 50px !important;
    margin-bottom: 8vh;
}

.btn-main {
    width: 180px;
    height: 56px;
    font-size: 20px;
    line-height: 56px;
    align-self: center;
}

.main,
.about .main,
.reviews-content,
.activities-wrapper,
.contact-container,
.activity-module {
    flex-direction: column !important;
    display: flex !important;
    gap: 16px !important;
}

.card,
.activities-image-frame,
.activity-image,
.contact-form,
.contact-info {
    width: 100% !important;
    max-width: 100%;
}

.faq-grid,
.farm-safety .section-wrapper {
    grid-template-columns: 1fr !important;
  }

.faqs,
.farm-safety {
    padding: 24px 0;
}

.safety-block,
.faq-group {
    padding: 24px 16px;
}

.faq-title,
.activities-title,
.safety-heading,
.contact-title,
.hero-content h1,
.hero-content h2 {
    font-size: 50px !important;
    margin: 16px 0;
    text-align: center;
}

.footer-top {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
		"info"
		"map"
		"cta";
    gap: 24px;
    padding: 24px 16px;
}

.footer-info {
    grid-area: info;
    justify-self: center;
    align-self: center;
}

.footer-map {
    grid-area: map;
    justify-self: center;
    align-self: center;
}

.footer-cta-wrap {
    grid-area: cta;
    justify-self: center;
    align-self: center;
}

.footer-illustration {
    margin-top: 16px;
}

.carousel {
    height: 60vh;
}

.cta-button,
.activity-button,
.cta-footer-button,
.submit-btn {
    margin: 16px auto;
    width: auto;
    padding: 16px 24px;
    font-size: 18px;
}
}